home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / dir2list.sql < prev    next >
Text File  |  2000-05-12  |  745b  |  20 lines

  1. /* RCSVER $Id: dir2list.sql,v 1.2 2000-01-25 16:31:50-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        dir2list.sql
  6. * Date:        07/12/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the dir2list table. This table contains the list  
  9. *        of valid directions ("direction2") for a trip.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE dir2list
  13. (
  14.     dirname        VARCHAR2(20),    /* valid direction name */
  15.     useflag        NUMBER(1),    /* 0=do not use in ROUTE.FBC */
  16.                     /* 1=use in ROUTE.FBC */
  17.     shortname        VARCHAR2(5),
  18.     CONSTRAINT pk_dir2list PRIMARY KEY (dirname)
  19. );
  20.